home *** CD-ROM | disk | FTP | other *** search
- /*
- File: PreferencesDialogWindow.h
-
- Contains: A dialog window for App preferences
-
- Written by: Dave Falkenburg
-
- Copyright: © 1993-94 by Dave Falkenburg, all rights reserved.
-
- Change History (most recent first):
-
- */
-
- #ifndef _PREFERENCESDIALOGWINDOW_
- #define _PREFERENCESDIALOGWINDOW_
-
- #ifndef _DIALOGWINDOW_
- #include "DialogWindow.h"
- #endif
-
-
- // Information about the dialog ID we are using.
-
- const DialogTemplateID kPreferencesDialogTemplateID = 1024;
-
-
- class TPreferencesDialogWindow : public TDialogWindow
- {
- public:
- TPreferencesDialogWindow();
-
- virtual void ItemHit(short theItem);
- };
-
- #endif
-